Skip to main content
GET
/
v1
/
subscriptions
/
templates
/
{id}
Get subscription template
curl --request GET \
  --url https://api.hyperline.co/v1/subscriptions/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "subt_7gdusOkqr5L0B8",
  "name": "Starter",
  "description": "Starter pack",
  "configurations": [],
  "created_at": "2025-11-30T18:24:34.473Z",
  "updated_at": "2025-11-30T18:24:34.473Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json
id
string
required

Subscription template ID.

Example:

"subt_7gdusOkqr5L0B8"

name
string
required

Subscription template name.

Example:

"Starter"

description
string | null
required

Subscription template description.

Example:

"Starter pack"

configurations
object[]
required

Subscription template configurations.

Example:
[]
created_at
string<date-time>
required

Subscription template creation date. UTC date time string in the ISO 8601 format.

Example:

"2025-11-30T18:24:34.473Z"

updated_at
string<date-time>
required

Subscription template last edition date. UTC date time string in the ISO 8601 format.

Example:

"2025-11-30T18:24:34.473Z"

I